home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / reviewpost_sql.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  85 lines

  1. #
  2. # Written by Astharot <astharot@zone-h.org>
  3. # Reference: http://www.zone-h.org/advisories/read/id=3864
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(12042);
  9.  script_bugtraq_id(9574,12159);
  10.  script_version("$Revision: 1.5 $");
  11.  name["english"] = "SQL injection in ReviewPost PHP Pro"; 
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host could be vulnerable to SQL Injection, because
  16. you are probably running ReviewPost PHP Pro, a web-based software
  17. that manage users opinions.
  18.  
  19. There is a flaw in this software which may allow a malicious
  20. attacker to inject arbitrary SQL queries which allows it to
  21. fetch data from the database.
  22.  
  23. Solution : Download the vendor supplied patch at
  24. http://www.photopost.com/members/forum/showthread.php?s=&threadid=98098
  25.  
  26. Risk factor : High";
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "SQL Injection";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Astharot");
  38.  family["english"] = "CGI abuses";
  39.  script_family(english:family["english"]);
  40.  script_dependencie("find_service.nes", "http_version.nasl");
  41.  script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. # Check starts here
  46.  
  47. include("http_func.inc");
  48. include("http_keepalive.inc");
  49.  
  50.  
  51. function check(dir)
  52. {
  53.  req = http_get(item:dir + "/showproduct.php?product=1'", port:port);
  54.  res = http_keepalive_send_recv(port:port, data:req);
  55.  if ( res == NULL ) exit(0);
  56.  
  57.  
  58.  
  59. if ("id,user,userid,cat,date,title,description,manu,keywords,bigimage,bigimage2,bigimage3,views,approved,rating" >< res ) {
  60.     security_hole(port);
  61.     exit(0);
  62.     }
  63.  
  64.  req = http_get(item:dir + "/showcat.php?cat=1'", port:port);
  65.  res = http_keepalive_send_recv(port:port, data:req);
  66.  if ( res == NULL ) exit(0);
  67.  
  68.  if ("id,catname FROM rp_categories" >< res ) {
  69.     security_hole(port);
  70.     exit(0);
  71.     }
  72. }
  73.  
  74. port = get_http_port(default:80);
  75.  
  76. if(!get_port_state(port))exit(0);
  77. if(!can_host_php(port:port))exit(0);
  78.  
  79.  
  80. foreach dir (cgi_dirs()) 
  81.  {
  82.   check(dir:dir);
  83.  }
  84.